net/http.Transport.connsPerHost (field)

8 uses

	net/http (current package)
		transport.go#L111: 	connsPerHost     map[connectMethodKey]int
		transport.go#L1605: 	if n := t.connsPerHost[w.key]; n < t.MaxConnsPerHost {
		transport.go#L1606: 		if t.connsPerHost == nil {
		transport.go#L1607: 			t.connsPerHost = make(map[connectMethodKey]int)
		transport.go#L1609: 		t.connsPerHost[w.key] = n + 1
		transport.go#L1670: 	n := t.connsPerHost[key]
		transport.go#L1705: 		delete(t.connsPerHost, key)
		transport.go#L1707: 		t.connsPerHost[key] = n